.mh-menu{
	height: auto;
	width: 100%;
	margin: 20px auto;
	position: relative;
}
.mh-menu li{
	width: 100%;
}
.mh-menu li a{
	display: block;
	width: 100%;
	padding: 0px 10px;
	text-align: left;
	position: relative;
	z-index: 10;
	background: #fff;
	height: 97px;
	border-left: 1px solid #ddd;
	background: rgba(255,255,255, 0.8);
}
.mh-menu li:hover a{
	background: rgba(255,255,255, 1);
}
.mh-menu li a span{
	display:block;
}
.mh-menu li a span:first-child{
	font-weight: 700;
	font-size: 16px;
	color: #ddd;
	padding-top: 10px;
	font-family: 'Alegreya SC', Georgia, serif;
}
.mh-menu li a span:nth-child(2){
	font-weight: 400;
	font-style: italic;
	font-size: 20px;
	/*font-family: 'Alegreya SC', Georgia, serif;*/
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	-ms-transition: color 0.2s linear;
	transition: color 0.2s linear;
}
.mh-menu li:nth-child(odd):hover span:nth-child(2){
	color: #ae3637;
}
.mh-menu li:nth-child(even):hover span:nth-child(2){
	/*color: #c3d243;*/
	color:#34c1e4;
}
/*.mh-menu li:nth-child(3):hover span:nth-child(2){*/
	/*color: #d38439;*/
/*}*/
/*.mh-menu li:nth-child(4):hover span:nth-child(2){*/
	/*color: #8e7463;*/
/*}*/
.mh-menu li img{
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	opacity: 0;
	-webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-moz-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-o-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-ms-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
}
.mh-menu li:hover img{
	left: -170px;
	opacity: 1;
}